home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Utilities / XLISP Source Code / XLISP Examples / Fact.LSP next >
Encoding:
Lisp/Scheme  |  1985-01-26  |  84 b   |  4 lines

  1. (defun factorial (n)
  2.        (cond ((= n 1) 1)
  3.          (t (* n (factorial (- n 1))))))
  4.